type golang.org/x/crypto/sha3.shakeWrapper
10 uses
golang.org/x/crypto/sha3 (current package)
shake.go#L34: return &shakeWrapper{sha3.NewSHAKE128(), 32, false, sha3.NewSHAKE128}
shake.go#L41: return &shakeWrapper{sha3.NewSHAKE256(), 64, false, sha3.NewSHAKE256}
shake.go#L51: return &shakeWrapper{sha3.NewCSHAKE128(N, S), 32, false, func() *sha3.SHAKE {
shake.go#L63: return &shakeWrapper{sha3.NewCSHAKE256(N, S), 64, false, func() *sha3.SHAKE {
shake.go#L84: type shakeWrapper struct {
shake.go#L91: func (w *shakeWrapper) Read(p []byte) (n int, err error) {
shake.go#L96: func (w *shakeWrapper) Clone() ShakeHash {
shake.go#L105: return &shakeWrapper{s, w.outputLen, w.squeezing, w.newSHAKE}
shake.go#L108: func (w *shakeWrapper) Size() int { return w.outputLen }
shake.go#L110: func (w *shakeWrapper) Sum(b []byte) []byte {
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |